home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / quicktime / quicktimeintro / desktop sprites / macprefix.h < prev   
Encoding:
Text File  |  2000-10-06  |  811 b   |  55 lines

  1. //////////
  2. //
  3. //    File:        MacPrefix.h
  4. //
  5. //    Contains:    Prefix file for our Macintosh projects.
  6. //
  7. //    Written by:    Tim Monroe
  8. //
  9. //    Copyright:    © 1999 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //    Change History (most recent first):
  12. //       
  13. //       <1>         11/11/99    rtm        first file
  14. //
  15. //////////
  16.  
  17. #ifndef __Prefix_File__
  18. #define __Prefix_File__
  19.  
  20.  
  21. //////////
  22. //
  23. // header files
  24. //
  25. //////////
  26.  
  27. //#include <ConditionalMacros.h>
  28.  
  29. #define TARGET_API_MAC_CARBON 1
  30.  
  31. // no need to set these if above is set
  32. #define ACCESSOR_CALLS_ARE_FUNCTIONS 1
  33. #define OPAQUE_TOOLBOX_STRUCTS 1
  34.  
  35. // testing
  36.  
  37.  
  38.  
  39. //////////
  40. //
  41. // compiler macros
  42. //
  43. //////////
  44.  
  45. #ifndef PASCAL_RTN
  46. #define PASCAL_RTN                        pascal
  47. #endif
  48.  
  49. #if TARGET_CPU_PPC
  50. #define SOUNDSPROCKET_AVAIL                1
  51. #else
  52. #define SOUNDSPROCKET_AVAIL                0
  53. #endif
  54.  
  55. #endif // __Prefix_File__